home *** CD-ROM | disk | FTP | other *** search
/ Workplace Effectiveness: Dealing with Change / Workplace Effectiveness: Dealing with Change.iso / pc / Assess.Dxr / Internal_47_movie & sprite tools.ls < prev    next >
Encoding:
Text File  |  1998-04-24  |  1.4 KB  |  63 lines

  1. on getDriveOrVol
  2.   set oldDelimit to the itemDelimiter
  3.   set the itemDelimiter to ":"
  4.   set driveOrVol to item 1 of the pathName
  5.   set the itemDelimiter to oldDelimit
  6.   return driveOrVol
  7. end
  8.  
  9. on findPointHz
  10.   put the mouseH - the left of sprite the clickOn
  11. end
  12.  
  13. on findPointVert
  14.   put the mouseV - the top of sprite the clickOn
  15. end
  16.  
  17. on findLocs startSprite, howMany
  18.   set thisOne to startSprite
  19.   set pointList to []
  20.   repeat with X = 1 to howMany
  21.     set thisLoc to the loc of sprite thisOne
  22.     add(pointList, thisLoc)
  23.     set thisOne to thisOne + 1
  24.   end repeat
  25.   put pointList
  26. end
  27.  
  28. on findLocsP startSprite, howMany
  29.   set thisOne to startSprite
  30.   set pointList to [:]
  31.   repeat with X = 1 to howMany
  32.     set thisLoc to the loc of sprite thisOne
  33.     setaProp(pointList, X, thisLoc)
  34.     set thisOne to thisOne + 1
  35.   end repeat
  36.   put pointList
  37. end
  38.  
  39. on findRects startSprite, howMany
  40.   set thisOne to startSprite
  41.   set pointList to []
  42.   repeat with X = 1 to howMany
  43.     set thisLoc to the rect of sprite thisOne
  44.     add(pointList, thisLoc)
  45.     set thisOne to thisOne + 1
  46.   end repeat
  47.   put pointList
  48. end
  49.  
  50. on nameMembers startMember, endMember, nameString
  51.   repeat with X = startMember to endMember
  52.     set the name of member X to nameString
  53.   end repeat
  54. end
  55.  
  56. on getMemnames startMember, endMember, LibNumber
  57.   set nameList to []
  58.   repeat with X = startMember to endMember
  59.     add(nameList, the name of member X of castLib LibNumber)
  60.   end repeat
  61.   put nameList
  62. end
  63.